From: Aditya Bhargava Date: Mon, 22 Sep 2025 07:28:41 +0000 (-0400) Subject: luci-app-acme: Fix incorrect "Days until renewal" placeholder X-Git-Url: http://git.openwrt.org/%22https:/collectd.org/%22http:/www.crowdsec.net//%22https%22/%22https:/collectd.org/%22http:/www.crowdsec.net/%22https%22?a=commitdiff_plain;h=3f5362013df86bd8f21958634db58ec7edcd6e80;p=project%2Fluci.git luci-app-acme: Fix incorrect "Days until renewal" placeholder If no value is provided for "Days until renewal", the `acme.sh` default is used. The placeholder should reflect this, and indicate what the current default is. Signed-off-by: Aditya Bhargava --- diff --git a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js index 3d1e1a1948..3054761546 100644 --- a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js +++ b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js @@ -216,7 +216,7 @@ return view.extend({ o = s.taboption('advanced', form.Value, 'days', _('Days until renewal')); o.optional = true; - o.placeholder = 90; + o.placeholder = 'acme.sh default (60 days)'; o.datatype = 'uinteger'; o.modalonly = true;